//
// Copyright (c) 2009 All Right Reserved
//
// vl
//
// 2009-01-01
// Contains ...
namespace LargoCommon.Music
{
/// Type of harmonic modalization.
public enum HarmonicModalizationType {
/// Modalization type - No modality, full chromatic.
Chromatic = 0,
/// Modalization type - Modality from structures in the bar after it disappears.
Consecutive = 1,
/// Modalization type - Forced from above.
Forced = 2,
}
}